home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / tools / czesc_2 / magic-exchange / install-exchange < prev    next >
Text File  |  1982-07-25  |  2KB  |  103 lines

  1. ; Installer-script for Magic-Exchange V1.18
  2. ; 01.03.1997 by Michael Einemann
  3.  
  4. (set #introduction
  5. (cat "\n\nThis program lets you install the utility Magic-Exchange V1.18.\n"
  6.      "You must have Installed MUI V3.0 or Higher"
  7. ))
  8.  
  9. (set #installmsg
  10. (cat "Installing the Magic-Exchange main program..."
  11. ))
  12.  
  13. (set #askdir-exchange
  14. (cat "Select a place to put Magic-Exchange."
  15. ))
  16.  
  17. (set #install-lang
  18. (cat "Installing language-catalogs..."
  19. ))
  20.  
  21. (set #install-docs
  22. (cat "Installing the Magic-Exchange Dokumentation"
  23. ))
  24.  
  25. (set #install-rexx
  26. (cat "Installing the Magic-Exchange Arexx scripts"
  27. ))
  28.  
  29. (set @default-dest "Sys:Wbstartup")
  30.  
  31. (transcript "Installing Magic-Exchange V1.18...")
  32.  
  33. (message #introduction)
  34.  
  35. (copylib
  36.          (help @copylib-help)
  37.          (prompt #installmsg)
  38.          (confirm)
  39.          (source "Install/Exchange")
  40.          (dest
  41.                  (askdir
  42.                         (prompt #askdir-exchange)
  43.                         (help @askdir-help)
  44.                         (default "Sys:wbstartup")
  45.                  )
  46.          )
  47. )
  48.  
  49. (complete 50)
  50.  
  51. (copyfiles
  52.         (help @copyfiles-help)
  53.         (prompt #install-lang)
  54.         (confirm)
  55.         (source "Install/catalogs")
  56.         (all)
  57.         (dest "Sys:locale/catalogs/")
  58. )
  59.  
  60. (complete 80)
  61.  
  62. (copyfiles
  63.         (help @copyfiles-help)
  64.         (prompt #install-lang)
  65.         (confirm)
  66.         (source "Install/Docs/")
  67.         (all)
  68.         (dest "Work:Documentation/")
  69. )
  70.  
  71. (complete 90)
  72.  
  73. (copyfiles
  74.         (help @copyfiles-help)
  75.         (prompt #install-lang)
  76.         (confirm)
  77.         (source "Install/Exchange")
  78.         (dest "work:WbStartup/")
  79. )
  80.  
  81. (complete 95)
  82.  
  83. (copyfiles
  84.         (help @copyfiles-help)
  85.         (prompt #install-lang)
  86.         (confirm)
  87.         (source "Install/Exchange.info")
  88.         (dest "Work:wbstartup/")
  89. )
  90.  
  91. (complete 99)
  92.  
  93. (copyfiles
  94.         (help @copyfiles-help)
  95.         (prompt #install-lang)
  96.         (confirm)
  97.         (source "Install/ARexx")
  98.         (all)
  99.         (dest "Rexx:")
  100. )
  101.  
  102. (complete 100)
  103.